382B - Number Busters - CodeForces Solution


binary search math *2000

Please click on ads to support us..

C++ Code:

#include <iostream>
#include <cassert>
#include <map>

using namespace std;


long long a, b, w, x, c, res;

bool sim_once(long long& t1, long long& t2){

    while(b < x) b += w, a --, c --, res ++, t1 ++;
    assert(b >= x);

    while(b >= x){
        b -= x, c --, res ++, t2 ++;
        if(c <= a){
            cout << res << '\n';
            return true;
        }
    }
    assert(b < x);
    return false;
}

int main() {

    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    cin >> a >> b >> w >> x >> c;
    if(c <= a){
        cout << 0 << '\n';
        return 0;
    }

    res = 0;
    w -= x;

    map<int, pair<long long, long long>> start_set;
    long long pre_t1 = 0, pre_t2 = 0;
    start_set[b] = {pre_t1, pre_t2};
    long long t1, t2;
    while(true){
//        int start_b = b;
        if(sim_once(pre_t1, pre_t2)) return 0;

        if(start_set.count(b)){
            t1 = pre_t1 - start_set[b].first;
            t2 = pre_t2 - start_set[b].second;
            break;
        }
        else start_set[b] = {pre_t1, pre_t2};
    }

    long long k = (c - a) / t2 + !!((c - a) % t2);
    assert(k >= 1);
    k --;
    res += k * (t1 + t2);
    a -= k * t1, c -= k * (t1 + t2);

//    cout << res << '\n';
//    cout << c << ' ' << a << ' ' << t1 << ' ' << t2 << '\n';
    if(c <= a) cout << res << '\n';
    else{
        assert(c - a <= t2);
        while(!sim_once(t1, t2));
    }

    return 0;
}


Comments

Submit
0 Comments
More Questions

1630A - And Matching
1630B - Range and Partition
1630C - Paint the Middle
1630D - Flipping Range
1328A - Divisibility Problem
339A - Helpful Maths
4A - Watermelon
476A - Dreamoon and Stairs
1409A - Yet Another Two Integers Problem
977A - Wrong Subtraction
263A - Beautiful Matrix
180C - Letter
151A - Soft Drinking
1352A - Sum of Round Numbers
281A - Word Capitalization
1646A - Square Counting
266A - Stones on the Table
61A - Ultra-Fast Mathematician
148A - Insomnia cure
1650A - Deletions of Two Adjacent Letters
1512A - Spy Detected
282A - Bit++
69A - Young Physicist
1651A - Playoff
734A - Anton and Danik
1300B - Assigning to Classes
1647A - Madoka and Math Dad
710A - King Moves
1131A - Sea Battle
118A - String Task